
:root {
  --wine-950: #17030d;
  --wine-900: #240713;
  --wine-800: #3a0a20;
  --wine-700: #57102f;
  --rose-400: #dd8eb5;
  --rose-300: #efb4d0;
  --cream-100: #fff7ee;
  --cream-200: #f3e5d8;
  --white: #ffffff;
  --black: #0e090b;

  --font-heading: "Playfair Display", serif;
  --font-body: "DM Sans", sans-serif;

  --sidebar-width: 250px;
  --page-radius: 22px;
  --transition: 280ms ease;
}

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

html,
body {
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
   overflow-x: hidden;
  background: var(--wine-950);
  color: var(--white);
  font-family: var(--font-body);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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



.home-page {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  overflow: hidden;
  background: var(--wine-950);
}



.sidebar {
  position: relative;
  z-index: 20;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  padding: 34px 30px 24px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(
      180deg,
      rgba(38, 6, 20, 0.98),
      rgba(20, 3, 11, 1)
    );
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
}

.brand-logo{
    width:170px;
    height:auto;
    display:block;
    transition:.4s ease;
}

.brand-logo:hover{
    transform:scale(1.04);
}
.main-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav-link {
  position: relative;
  min-height: 47px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    color var(--transition),
    padding var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 1px;
  background: var(--rose-400);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  padding-left: 12px;
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 52px;
}

.sidebar-bottom {
  margin-top: auto;
}

.sidebar-label {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-style: italic;
  color: var(--cream-200);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.social-links a:hover {
  color: var(--wine-950);
  background: var(--rose-300);
  border-color: var(--rose-300);
  transform: translateY(-3px);
}

.copyright {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}



.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;

  background-image: url("assets/images/vvt.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(
      90deg,
      rgba(20, 2, 10, 0.88) 0%,
      rgba(31, 3, 14, 0.66) 38%,
      rgba(15, 2, 8, 0.17) 70%,
      rgba(12, 2, 7, 0.3) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 2, 6, 0.42) 0%,
      transparent 35%,
      rgba(14, 2, 8, 0.76) 100%
    );
}

.hero::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 10;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--page-radius);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero-glow-one {
  top: 15%;
  left: 12%;
  width: 360px;
  height: 360px;
  background: rgba(160, 22, 83, 0.24);
}

.hero-glow-two {
  right: 4%;
  bottom: 4%;
  width: 280px;
  height: 280px;
  background: rgba(228, 112, 167, 0.12);
}

.hero-topbar {
  position: relative;
  z-index: 12;
  flex: 0 0 auto;
  min-height: 80px;
  padding: 32px 55px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: 15px;
  font-style: italic;
  color: var(--cream-200);
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.location-link i {
  color: var(--rose-300);
}

.location-link:hover {
  color: var(--rose-300);
}



.hero-content {
  position: relative;
  z-index: 12;
  width: min(680px, 62%);
  margin: auto 0;
  padding: 10px 55px 30px;
}

.hero-intro {
  margin-bottom: 18px;
  color: var(--rose-300);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  opacity: 0;
  animation: reveal-up 800ms 180ms forwards;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.script-text {
  position: relative;
  width: fit-content;
  margin: 0 0 -18px -5px;
  color: var(--rose-300);
  font-family: var(--font-heading);
  font-size: clamp(72px, 7vw, 125px);
  font-style: italic;
  font-weight: 500;
  line-height: 0.8;
  text-transform: none;

  opacity: 0;
  animation: reveal-up 900ms 280ms forwards;
}

.title-line {
  display: block;
  font-size: clamp(58px, 6vw, 105px);

  opacity: 0;
  animation: reveal-up 900ms 390ms forwards;
}

.title-accent {
  color: var(--cream-100);
  font-size: clamp(43px, 5vw, 82px);
  animation-delay: 500ms;
}

.hero-description {
  max-width: 510px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;

  opacity: 0;
  animation: reveal-up 900ms 610ms forwards;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;

  opacity: 0;
  animation: reveal-up 900ms 720ms forwards;
}



.button {
  min-height: 54px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--wine-950);
  background: var(--cream-100);
  border: 1px solid var(--cream-100);
}

.button-primary i {
  transition: transform var(--transition);
}

.button-primary:hover {
  background: var(--rose-300);
  border-color: var(--rose-300);
}

.button-primary:hover i {
  transform: translateX(4px);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  color: var(--wine-950);
  background: var(--white);
  border-color: var(--white);
}



.hero-footer {
  position: relative;
  z-index: 12;
  flex: 0 0 auto;
  min-height: 90px;
  padding: 0 55px 25px;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr auto;
  align-items: end;
  gap: 35px;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.info-label {
  color: var(--rose-300);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.info-value {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-heading);
  font-size: 13px;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-line {
  position: relative;
  width: 56px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--rose-300);
  animation: scroll-line 2.2s ease-in-out infinite;
}

.about-page {
  min-height: 100vh;
  background: #f4eee7;
  color: #2b171b;
  overflow-x: hidden;
}

.about-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 56% 44%;
}

.about-image {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(20, 5, 9, 0.05) 40%,
            rgba(20, 5, 9, 0.24) 100%
        );
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s ease;
}

.about-image:hover img {
    transform: scale(1.025);
}

.about-content {
    min-height: 100vh;
    padding: 90px 7vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.about-content::before {
    content: "";
    width: 1px;
    height: 120px;
    position: absolute;
    top: 0;
    left: 7vw;
    background: rgba(105, 24, 45, 0.28);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    color: #7e263f;
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.24em;
}

.section-label::before {
    content: "";
    width: 42px;
    height: 1px;
    background: #7e263f;
}

.about-content h1 {
    max-width: 600px;
    margin: 0 0 30px;
    color: #34161d;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.3rem, 5vw, 6rem);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.about-content p {
    max-width: 570px;
    margin: 0 0 18px;
    color: #665357;
    font-family: "Poppins", sans-serif;
    font-size: 0.96rem;
    font-weight: 300;
    line-height: 1.9;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.journey-section {
  position: relative;
  padding: 120px clamp(40px, 7vw, 120px);
  background: #241015;
  color: #f4eee7;
}

.journey-heading {
  max-width: 720px;
  margin-bottom: 80px;
}

.journey-heading .section-label {
  color: #d2a6b2;
}

.journey-heading .section-label::before {
  background: #d2a6b2;
}

.journey-heading h2 {
  max-width: 680px;
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.journey-heading p {
  max-width: 640px;
  margin: 0;
  color: rgba(244, 238, 231, 0.68);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
}

.journey-timeline {
  position: relative;
  max-width: 1050px;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 166px;
  width: 1px;
  background: rgba(244, 238, 231, 0.18);
}

.journey-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px 72px minmax(0, 1fr);
  align-items: start;
  min-height: 190px;
}

.journey-year {
  padding-top: 3px;
  color: #d2a6b2;
  font-family: "Poppins", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journey-marker {
  position: relative;
  width: 13px;
  height: 13px;
  margin-left: 30px;
  border: 2px solid #d2a6b2;
  border-radius: 50%;
  background: #241015;
  z-index: 1;
}

.journey-marker::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: #d2a6b2;
  transform: scale(0);
  transition: transform 0.35s ease;
}

.journey-copy {
  max-width: 680px;
  padding-bottom: 50px;
}

.journey-copy h3 {
  margin: -5px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
}

.journey-copy p {
  margin: 0;
  color: rgba(244, 238, 231, 0.62);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
}

.journey-item:hover .journey-marker::after {
  transform: scale(1);
}

.journey-item:hover .journey-copy h3 {
  color: #e3bec8;
}

.values-section {
  padding: 130px clamp(40px, 7vw, 120px);
  background: #f4eee7;
  color: #2b171b;
}

.values-heading {
  max-width: 760px;
  margin-bottom: 70px;
}

.values-heading h2 {
  max-width: 700px;
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.values-heading p {
  max-width: 650px;
  margin: 0;
  color: #665357;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
}

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

.value-card {
  position: relative;
  overflow: hidden;
  background: #fffaf5;
  border: 1px solid rgba(82, 37, 47, 0.12);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(44, 19, 25, 0.14);
}

.value-image {
  position: relative;
  height: 330px;
  overflow: hidden;
}

.value-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(33, 12, 17, 0.34),
    transparent 55%
  );
  pointer-events: none;
}

.value-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.value-card:hover .value-image img {
  transform: scale(1.06);
}

.value-content {
  position: relative;
  padding: 34px 30px 38px;
}


.value-content h3 {
  margin: 0 0 14px;
  color: #351820;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
}

.value-content p {
  margin: 0;
  color: #6a565b;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
}

.about-body .sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  height: 100dvh;
  z-index: 100;
}

.about-body .about-page {
  width: calc(100% - var(--sidebar-width));
  margin-left: var(--sidebar-width);
}


.menu-body .sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  height: 100dvh;
  z-index: 100;
}

.menu-page {
  width: calc(100% - var(--sidebar-width));
  min-height: 100vh;
  margin-left: var(--sidebar-width);
  background: #f4eee7;
  color: #2b171b;
  overflow-x: hidden;
}

.menu-hero {
      height: 100vh;
    height: 95dvh;
  display: flex;
  align-items: flex-end;
  padding: 120px clamp(40px, 7vw, 120px) 90px;
  background:
    linear-gradient(rgba(31, 6, 13, 0.45), rgba(31, 6, 13, 0.75)),
    url("assets/images/cofee.png") center / cover no-repeat;
  color: #fff8f2;
}

.menu-hero-content {
  max-width: 760px;
}

.menu-hero .section-label {
  color: #e2b8c4;
}

.menu-hero .section-label::before {
  background: #e2b8c4;
}

.menu-hero h1 {
  max-width: 740px;
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.7rem, 7vw, 7rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.menu-hero p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 248, 242, 0.78);
  font-family: "Poppins", sans-serif;
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.9;
}

.menu-section {
  padding: 100px clamp(40px, 7vw, 120px) 130px;
}

.menu-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-button {
  padding: 12px 22px;
  border: 1px solid rgba(91, 35, 49, 0.2);
  background: transparent;
  color: #5b2331;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.filter-button:hover,
.filter-button.active {
  border-color: #5b2331;
  background: #5b2331;
  color: #fff8f2;
}

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

.menu-card {
  overflow: hidden;
  background: #fffaf5;
  border: 1px solid rgba(82, 37, 47, 0.12);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(44, 19, 25, 0.13);
}

.menu-card-image {
  height: 320px;
  overflow: hidden;
  background: #2a0c14;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.06);
}

.menu-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 248, 242, 0.72);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  background:
    radial-gradient(circle at center, #6b263a 0%, #2a0c14 72%);
}

.menu-card-content {
  padding: 28px 26px 32px;
}

.menu-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.menu-card-heading h2 {
  margin: 0;
  color: #34161d;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.1;
}

.menu-price {
  flex-shrink: 0;
  color: #8b3d53;
  font-family: "Poppins", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
}

.menu-card-content p {
  margin: 0;
  color: #6a565b;
  font-family: "Poppins", sans-serif;
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.75;
}

.menu-card.is-hidden {
  display: none;
}


.gallery-body .sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  height: 100dvh;
  z-index: 100;
}

.gallery-page {
  width: calc(100% - var(--sidebar-width));
  min-height: 100vh;
  margin-left: var(--sidebar-width);
  background: #f4eee7;
  color: #2b171b;
  overflow-x: hidden;
}


.gallery-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 120px clamp(40px, 7vw, 120px) 90px;
  background:
    url("assets/gallery/gallery-01.png")
    center / cover no-repeat;
  color: #fff8f2;
  overflow: hidden;
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(25, 5, 10, 0.88) 0%,
      rgba(25, 5, 10, 0.55) 48%,
      rgba(25, 5, 10, 0.18) 100%
    ),
    linear-gradient(
      to top,
      rgba(25, 5, 10, 0.72),
      transparent 55%
    );
}

.gallery-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.gallery-hero .section-label {
  color: #e5bac5;
}

.gallery-hero .section-label::before {
  background: #e5bac5;
}

.gallery-hero h1 {
  max-width: 760px;
  margin: 0 0 26px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.gallery-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 248, 242, 0.78);
  font-family: "Poppins", sans-serif;
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.9;
}

.gallery-scroll {
  position: absolute;
  right: clamp(40px, 6vw, 90px);
  bottom: 74px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff8f2;
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.gallery-scroll:hover {
  opacity: 0.7;
}


.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: 70px;
  padding: 120px clamp(40px, 7vw, 120px) 80px;
}

.gallery-intro-copy h2 {
  max-width: 700px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.gallery-intro > p {
  max-width: 560px;
  margin: 0 0 8px;
  color: #6a565b;
  font-family: "Poppins", sans-serif;
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.9;
}


.gallery-section {
  padding: 0 clamp(40px, 7vw, 120px) 130px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 38px;
  gap: 22px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 10;
  min-height: 380px;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #2a0c14;
  cursor: pointer;
  text-align: left;
}

.gallery-item-large {
  grid-column: span 8;
  grid-row: span 14;
}

.gallery-item-wide {
  grid-column: span 8;
  grid-row: span 10;
}

.gallery-item-tall {
  grid-column: span 4;
  grid-row: span 14;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.5s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(24, 5, 10, 0.82),
      rgba(24, 5, 10, 0.04) 58%
    );
  opacity: 0.72;
  transition: opacity 0.45s ease;
}

.gallery-item-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff8f2;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}

.gallery-category {
  font-family: "Poppins", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.68;
}

.gallery-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: brightness(0.88);
}

.gallery-item:hover::after {
  opacity: 0.9;
}

.gallery-item:hover .gallery-item-overlay {
  transform: translateY(0);
}


.gallery-cta {
  position: relative;
  padding: 130px clamp(40px, 7vw, 120px);
  background:
    linear-gradient(
      rgba(38, 8, 16, 0.9),
      rgba(38, 8, 16, 0.94)
    ),
    url("assets/gallery/gallery-09.png")
    center / cover no-repeat;
  color: #fff8f2;
}

.gallery-cta-content {
  max-width: 780px;
}

.gallery-cta .section-label {
  color: #e5bac5;
}

.gallery-cta .section-label::before {
  background: #e5bac5;
}

.gallery-cta h2 {
  max-width: 760px;
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 5.8vw, 6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.gallery-cta p {
  max-width: 620px;
  margin: 0 0 34px;
  color: rgba(255, 248, 242, 0.72);
  font-family: "Poppins", sans-serif;
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.9;
}

.gallery-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}


.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 50px 110px;
  background: rgba(15, 3, 7, 0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-content {
  width: min(1100px, 100%);
  max-height: 84vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 76vh;
  display: block;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.lightbox-caption {
  margin-top: 18px;
  color: #fff8f2;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  text-align: center;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 248, 242, 0.22);
  border-radius: 50%;
  background: rgba(255, 248, 242, 0.06);
  color: #fff8f2;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: rgba(255, 248, 242, 0.16);
  transform: scale(1.06);
}

.lightbox-close {
  top: 28px;
  right: 32px;
}

.lightbox-prev {
  left: 34px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.06);
}

.lightbox-counter {
  position: absolute;
  right: 38px;
  bottom: 28px;
  color: rgba(255, 248, 242, 0.58);
  font-family: "Poppins", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}


.reservation-body .sidebar{
    position:fixed;
    top:0;
    left:0;
    width:var(--sidebar-width);
    height:100vh;
    height:100dvh;
    z-index:100;
}

.reservation-page{
    width:calc(100% - var(--sidebar-width));
    margin-left:var(--sidebar-width);
    min-height:100vh;
    background:#f7f2ec;
    color:#2b181d;
    overflow-x:hidden;
}



.reservation-hero{
    position:relative;
    min-height:90vh;
    display:flex;
    align-items:flex-end;
    padding:120px clamp(40px,7vw,120px) 90px;

    background:
    url("assets/reservation/reservation-hero.png")
    center center/cover
    no-repeat;

    overflow:hidden;
}

.reservation-hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(27,8,12,.86),
        rgba(27,8,12,.48),
        rgba(27,8,12,.18)
    );
}

.reservation-hero-content{
    position:relative;
    z-index:2;
    max-width:720px;
}

.reservation-hero .section-label{
    color:#e9c8d2;
}

.reservation-hero .section-label::before{
    background:#e9c8d2;
}

.reservation-hero h1{

    margin:18px 0 24px;

    font-family:"Cormorant Garamond",serif;
    font-size:clamp(4rem,7vw,7rem);
    line-height:.9;
    font-weight:500;
    color:#fff;
}

.reservation-hero p{

    max-width:620px;

    color:rgba(255,255,255,.82);

    font-family:"Poppins",sans-serif;
    font-size:.95rem;
    line-height:1.9;
}

.hero-actions{

    display:flex;
    gap:18px;

    margin-top:42px;
}

.hero-scroll{

    position:absolute;

    right:70px;
    bottom:70px;

    display:flex;
    align-items:center;
    gap:12px;

    color:#fff;

    text-decoration:none;

    font-size:.75rem;

    letter-spacing:.15em;

    text-transform:uppercase;

    z-index:2;
}

.hero-scroll:hover{

    opacity:.7;

}



.reservation-info{

    padding:110px clamp(40px,7vw,120px);

}

.reservation-info-heading{

    max-width:720px;

    margin-bottom:60px;
}

.reservation-info-heading h2{

    margin-top:18px;

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(3rem,5vw,5rem);

    line-height:.95;
}

.reservation-cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;
}

.reservation-card{

    background:white;

    padding:42px;

    border-radius:26px;

    box-shadow:
    0 25px 60px
    rgba(0,0,0,.05);

    transition:.35s;
}

.reservation-card:hover{

    transform:translateY(-8px);

}

.reservation-icon{

    width:70px;
    height:70px;

    display:grid;
    place-items:center;

    margin-bottom:28px;

    border-radius:50%;

    background:#f7ece7;

    font-size:1.4rem;

    color:#8c3046;
}

.reservation-card h3{

    margin-bottom:8px;

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;
}

.reservation-card p{

    color:#7b666b;

    line-height:1.8;

    margin-bottom:16px;
}

.reservation-card strong{

    color:#8b3046;

    font-weight:600;

}



.reservation-section{

    padding:40px clamp(40px,7vw,120px) 120px;

}

.reservation-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

}

.reservation-form-container{

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.45);

    border-radius:32px;

    padding:60px;
}

.reservation-form-container h2{

    margin:18px 0 18px;

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(3rem,5vw,4.6rem);

    line-height:.95;
}

.reservation-form-container>p{

    color:#6e5c61;

    line-height:1.9;

    margin-bottom:42px;

}

.reservation-form{

    display:flex;

    flex-direction:column;

    gap:26px;

}

.form-row{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.form-group{

    display:flex;

    flex-direction:column;

    gap:10px;

}

.form-group label{

    font-size:.8rem;

    text-transform:uppercase;

    letter-spacing:.08em;

    color:#6d5960;

    font-weight:600;

}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    padding:18px 20px;

    border-radius:16px;

    border:1px solid #e8ddd8;

    background:white;

    outline:none;

    transition:.35s;

    font-family:"Poppins",sans-serif;

}

.form-group textarea{

    resize:vertical;

    min-height:150px;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#8c3046;

    box-shadow:
    0 0 0 4px
    rgba(140,48,70,.10);

}

.reservation-policy{

    padding:24px;

    border-radius:18px;

    background:#faf6f3;

}

.reservation-policy h4{

    margin-bottom:12px;

    font-family:"Cormorant Garamond",serif;

    font-size:1.5rem;

}

.reservation-policy ul{

    padding-left:18px;

    color:#726268;

    line-height:1.9;

}

.reservation-submit{

    margin-top:10px;

    width:100%;

}



.reservation-image{

    position:relative;

}

.reservation-image img{

    width:100%;

    display:block;

    border-radius:30px;

    box-shadow:
    0 40px 80px
    rgba(0,0,0,.12);

}





.reservation-experience{

    display:grid;

    grid-template-columns:.95fr 1.05fr;

    gap:90px;

    align-items:center;

    padding:0 clamp(40px,7vw,120px) 130px;

}

.reservation-experience-image img{

    width:100%;

    display:block;

    border-radius:32px;

    box-shadow:
    0 35px 90px
    rgba(0,0,0,.12);

}

.reservation-experience-content h2{

    margin:18px 0 24px;

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(3rem,5vw,5.2rem);

    line-height:.95;

}

.reservation-experience-content>p{

    max-width:620px;

    color:#6d5d62;

    line-height:1.9;

    margin-bottom:48px;

}

.reservation-benefits{

    display:grid;

    gap:26px;

}

.reservation-benefit{

    display:flex;

    gap:28px;

    align-items:flex-start;

    padding-bottom:22px;

    border-bottom:1px solid #e9ddd8;

}

.benefit-number{

    min-width:60px;

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    color:#8c3046;

}

.reservation-benefit h3{

    margin-bottom:8px;

    font-family:"Cormorant Garamond",serif;

    font-size:1.9rem;

}

.reservation-benefit p{

    color:#6f5f64;

    line-height:1.8;

}



.reservation-faq{

    padding:0 clamp(40px,7vw,120px) 140px;

}

.reservation-faq-heading{

    max-width:760px;

    margin-bottom:60px;

}

.reservation-faq-heading h2{

    margin:18px 0;

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(3rem,5vw,5rem);

    line-height:.95;

}

.reservation-faq-heading p{

    color:#6f5f64;

    line-height:1.9;

}

.faq-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.faq-item{

    background:white;

    border-radius:22px;

    overflow:hidden;

    box-shadow:
    0 15px 40px
    rgba(0,0,0,.05);

}

.faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 34px;

    background:none;

    border:none;

    cursor:pointer;

    font-family:"Cormorant Garamond",serif;

    font-size:1.8rem;

    text-align:left;

}

.faq-question i{

    transition:.35s;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer-inner{

    padding:0 34px 28px;

}

.faq-answer p{

    color:#6e5d62;

    line-height:1.9;

}



.reservation-cta{

    position:relative;

    padding:140px clamp(40px,7vw,120px);

    background:
    linear-gradient(
        rgba(33,8,15,.84),
        rgba(33,8,15,.90)
    ),
    url("assets/reservation/reservation-cta.png")
    center/cover
    no-repeat;

    overflow:hidden;

}

.reservation-cta-overlay{

    position:absolute;

    inset:0;

    backdrop-filter:blur(1px);

}

.reservation-cta-content{

    position:relative;

    z-index:2;

    max-width:760px;

    color:white;

}

.reservation-cta .section-label{

    color:#e7c2cd;

}

.reservation-cta .section-label::before{

    background:#e7c2cd;

}

.reservation-cta h2{

    margin:18px 0 24px;

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(3.5rem,6vw,6rem);

    line-height:.92;

}

.reservation-cta p{

    max-width:620px;

    color:rgba(255,255,255,.76);

    line-height:1.9;

    margin-bottom:40px;

}

.reservation-cta-actions{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}



.reservation-modal{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.reservation-modal.show{

    opacity:1;

    visibility:visible;

}

.reservation-modal-backdrop{

    position:absolute;

    inset:0;

    background:rgba(12,4,6,.70);

    backdrop-filter:blur(6px);

}

.reservation-modal-content{

    position:relative;

    z-index:2;

    width:min(92%,560px);

    background:white;

    border-radius:28px;

    padding:60px;

    text-align:center;

    box-shadow:
    0 30px 90px
    rgba(0,0,0,.18);

}

.reservation-modal-close{

    position:absolute;

    top:18px;

    right:18px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:#f4efeb;

}

.reservation-modal-icon{

    width:90px;

    height:90px;

    display:grid;

    place-items:center;

    margin:0 auto 28px;

    border-radius:50%;

    background:#8c3046;

    color:white;

    font-size:2rem;

}

.reservation-modal-content h2{

    margin:18px 0;

    font-family:"Cormorant Garamond",serif;

    font-size:3rem;

}

.reservation-modal-content p{

    color:#6f5f64;

    line-height:1.9;

    margin-bottom:34px;

}


.visit-body .sidebar{
    position:fixed;
    top:0;
    left:0;
    width:var(--sidebar-width);
    height:100vh;
    z-index:100;
}

.visit-page{
    width:calc(100% - var(--sidebar-width));
    margin-left:var(--sidebar-width);
    min-height:100vh;
    background:#faf6f1;
    color:#2d1b1f;
    overflow-x:hidden;
}



.visit-hero{

    position:relative;

    min-height:90vh;

    display:flex;
    align-items:flex-end;

    padding:120px clamp(40px,7vw,120px) 90px;

    background:
    url("../assets/visit/visit-hero.png")
    center center/cover
    no-repeat;

}

.visit-hero-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(26,8,12,.86),
        rgba(26,8,12,.46),
        rgba(26,8,12,.12)
    );

}

.visit-hero-content{

    position:relative;

    z-index:2;

    max-width:700px;

}

.visit-hero h1{

    margin:20px 0 22px;

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(4rem,7vw,7rem);

    line-height:.92;

    color:white;

}

.visit-hero p{

    color:rgba(255,255,255,.82);

    max-width:600px;

    line-height:1.9;

}

.visit-hero .section-label{

    color:#e9c8d2;

}

.visit-hero .section-label::before{

    background:#e9c8d2;

}



.visit-details{

    padding:120px clamp(40px,7vw,120px);

}

.visit-heading{

    max-width:720px;

    margin-bottom:70px;

}

.visit-heading h2{

    margin:20px 0;

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(3rem,5vw,5rem);

    line-height:.95;

}

.visit-heading p{

    color:#6d5c60;

    line-height:1.9;

}



.visit-cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.visit-card{

    background:white;

    border-radius:28px;

    padding:42px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.06);

    transition:.35s;

}

.visit-card:hover{

    transform:translateY(-8px);

}

.visit-card-icon{

    width:72px;
    height:72px;

    display:grid;
    place-items:center;

    margin-bottom:30px;

    border-radius:50%;

    background:#f8ece7;

    color:#8c3046;

    font-size:1.5rem;

}

.visit-card h3{

    margin-bottom:10px;

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

}

.visit-card p{

    color:#6d5c60;

    line-height:1.8;

    margin-bottom:22px;

}

.visit-card a{

    color:#8c3046;

    text-decoration:none;

    font-weight:600;

}

.visit-card a i{

    margin-left:8px;

}



.visit-location{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    padding:40px clamp(40px,7vw,120px) 130px;

}

.visit-location-map iframe{

    width:100%;

    height:620px;

    border:none;

    border-radius:28px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.08);

}

.visit-location-content h2{

    margin:20px 0;

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(3rem,5vw,5rem);

    line-height:.95;

}

.visit-location-content>p{

    color:#6d5c60;

    line-height:1.9;

    margin-bottom:40px;

}

.location-information{

    display:flex;

    flex-direction:column;

    gap:26px;

    margin-bottom:40px;

}

.location-info-item{

    display:flex;

    gap:22px;

    align-items:flex-start;

}

.location-info-item i{

    width:60px;
    height:60px;

    display:grid;
    place-items:center;

    border-radius:50%;

    background:#f6ebe6;

    color:#8c3046;

    font-size:1.2rem;

}

.location-info-item span{

    display:block;

    margin-bottom:6px;

    font-weight:700;

}

.location-info-item p{

    color:#6d5c60;

    line-height:1.8;

}

.visit-contact{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;

    padding:0 clamp(40px,7vw,120px) 130px;

}

.visit-contact-content h2{

    margin:20px 0;

    font-family:"Cormorant Garamond",serif;
    font-size:clamp(3rem,5vw,5rem);
    line-height:.95;

}

.visit-contact-content>p{

    color:#6d5c60;
    line-height:1.9;
    margin-bottom:40px;

}

.visit-contact-image img{

    width:100%;
    display:block;

    border-radius:30px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.08);

}



.visit-form-container{

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(20px);

    border-radius:30px;

    padding:60px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.05);

}

.visit-form{

    display:flex;
    flex-direction:column;
    gap:24px;

}

.visit-form .form-group{

    display:flex;
    flex-direction:column;
    gap:10px;

}

.visit-form label{

    font-size:.82rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.08em;

    color:#6d5c60;

}

.visit-form input,
.visit-form textarea{

    width:100%;

    padding:18px 20px;

    border:1px solid #e8ddd8;

    border-radius:16px;

    background:white;

    outline:none;

    transition:.3s;

    font-family:inherit;

}

.visit-form textarea{

    resize:vertical;
    min-height:180px;

}

.visit-form input:focus,
.visit-form textarea:focus{

    border-color:#8c3046;

    box-shadow:
        0 0 0 4px rgba(140,48,70,.12);

}



.visit-social{

    padding:0 clamp(40px,7vw,120px) 130px;

    text-align:center;

}

.visit-social-heading{

    max-width:760px;

    margin:0 auto 60px;

}

.visit-social-heading h2{

    margin:20px 0;

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(3rem,5vw,5rem);

    line-height:.95;

}

.visit-social-heading p{

    color:#6d5c60;

    line-height:1.9;

}

.visit-social-links{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}

.visit-social-links a{

    width:220px;

    background:white;

    border-radius:24px;

    padding:40px;

    text-decoration:none;

    color:#2d1b1f;

    box-shadow:
        0 20px 50px rgba(0,0,0,.05);

    transition:.35s;

}

.visit-social-links a:hover{

    transform:translateY(-8px);

}

.visit-social-links i{

    font-size:2rem;

    color:#8c3046;

    margin-bottom:20px;

}

.visit-social-links span{

    display:block;

    font-weight:600;

}



.visit-cta{

    position:relative;

    padding:140px clamp(40px,7vw,120px);

    background:
        linear-gradient(
            rgba(28,9,13,.86),
            rgba(28,9,13,.92)
        ),
        url("../assets/visit/visit-footer.png")
        center/cover no-repeat;

    overflow:hidden;

}

.visit-cta-overlay{

    position:absolute;
    inset:0;

}

.visit-cta-content{

    position:relative;

    z-index:2;

    max-width:760px;

    color:white;

}

.visit-cta h2{

    margin:20px 0;

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(3.5rem,6vw,6rem);

    line-height:.92;

}

.visit-cta p{

    max-width:620px;

    color:rgba(255,255,255,.78);

    line-height:1.9;

    margin-bottom:40px;

}

.visit-cta-actions{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}



.visit-modal{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.visit-modal.show{

    opacity:1;
    visibility:visible;

}

.visit-modal-backdrop{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(6px);

}

.visit-modal-content{

    position:relative;

    width:min(92%,560px);

    background:white;

    border-radius:30px;

    padding:60px;

    text-align:center;

    z-index:2;

}

.visit-modal-close{

    position:absolute;

    top:18px;
    right:18px;

    width:42px;
    height:42px;

    border:none;

    border-radius:50%;

    cursor:pointer;

}

.visit-modal-icon{

    width:90px;
    height:90px;

    display:grid;
    place-items:center;

    margin:0 auto 28px;

    border-radius:50%;

    background:#8c3046;

    color:white;

    font-size:2rem;

}

.visit-modal-content h2{

    margin:20px 0;

    font-family:"Cormorant Garamond",serif;

    font-size:3rem;

}

.visit-modal-content p{

    color:#6d5c60;

    line-height:1.9;

    margin-bottom:35px;

}
