:root {
  --burgundy: #6e3a43;
  --burgundy-mid: #8a4a55;
  --burgundy-light: #a86070;
  --burgundy-peach: #c76969;
  --reddish-purple: #d5435d;
  --rose: #f4a2a3;
  --rose-menu: #e36061;
  --rose-deep: #e07879;
  --rose-dark: #c45c5d;
  --rose-light: #f8c4c5;
  --rose-pale: #fdf0f0;
  --rose-blush: #fef6f6;
  --rose-h2: #d54395;
  --peach: #ea9a91;
  --gold: #c9a227;
  --gold-light: #e8c84a;
  --gold-pale: #f5e9c0;
  --baby-blue: #7dd3cf;
  --white: #ffffff;
  --off-white: #fdf8f8;
  --grey-1: #f2eeee;
  --grey-2: #e0d8d8;
  --grey-3: #9a9090;
  --grey-4: #5a5050;
  --text: #1a1616;
  --text-mid: #3d3030;
  --text-light: #6b6060;

  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-playfair: 'Playfair Display', Georgia, serif;
  --font-serif: 'serif';
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(110, 58, 67, 0.07);
  --shadow-md: 0 6px 24px rgba(110, 58, 67, 0.10);
  --shadow-lg: 0 16px 48px rgba(110, 58, 67, 0.14);
  --shadow-rose: 0 6px 24px rgba(244, 162, 163, 0.25);

  --nav-h: 74px;
  --max-w: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

.an-page-header {
  background: linear-gradient(180deg, #ffd6dd 0%, #fdf6f7 40%, var(--off-white) 100%);
  padding: calc(var(--nav-h) + 70px) 20px 60px 20px;
  text-align: center;
}

.an-page-header-inner {
position: relative;
}

.hero-inner {
  max-width: 1024px;
  margin: auto;
}

.an-brush-highlight {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  margin: 0 -4px;
  z-index: 1;
  color: var(--burgundy); 
}

.an-brush-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8%;
  height: 75%;
  background: linear-gradient(100deg, rgba(232, 200, 74, 0.15) 0%, rgb(232 200 74 / 8%) 15%, rgb(255 221 114 / 35%) 85%, rgba(201, 162, 39, 0.1) 100%);
  border-radius: 4% 95% 6% 95% / 95% 12% 95% 5%;
  transform: rotate(-1.2deg);
  z-index: -1;
  animation: brushDraw 5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: left center;
}


.an-container {
  width: min(var(--max-w), 100% - 2.5rem);
  margin-inline: auto;
}

.an-main{
padding-top:88px;
}

.an-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

.an-nav .an-lang-toggle {
  background: rgba(244, 162, 163, 0.45);
}

.an-nav.an-scrolled {
  background: rgba(237, 159, 162, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.an-nav.an-scrolled .an-lang-toggle {
  background: rgba(255, 255, 255, 0.6);
}

.an-nav.an-scrolled .an-nav-logo a {
  filter: brightness(0) invert(1);
}

.an-nav.an-scrolled .an-nav-logo-responsive .an-og40th,
.an-nav-logo .an-og40th {
  line-height: 1.1;
  font-family: var(--font-playfair);
  font-size: 16px;
  display: block !important;
  text-align: center;
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(0deg, rgb(255 254 235) 0%, rgb(255 219 144) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 5px;
  -webkit-text-fill-color: transparent;
}

.an-nav-logo .an-og40th {
  display: none !important;
}

.an-nav.an-scrolled .an-nav-logo .an-og40th {
  display: none !important;
}

.an-nav.an-scrolled .an-og40th span,
.an-nav.an-scrolled .an-nav-logo-responsive .an-og40th span {
  font-family: var(--font-serif);
}


.an-mobile-br {
  display: none;
}

@media (max-width: 1024px) {
  .an-mobile-br {
    display: inline; 
  }
  
  .an-footer-bottom p {
    line-height: 1.6;
  }

  .an-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .an-nav-logo {
    display: flex;
    align-items: center;
    gap: 6px; 
    max-width: 75%;
  }

  .an-nav-logo img {
    max-height: 26px;
    width: auto;
    object-fit: contain;
  }
  
  .an-nav-logo a:nth-child(3) img {
    max-height: 46px;
  }
}

@media (max-width: 360px) {
  .an-nav-logo {
    gap: 4px;
  }
  .an-nav-logo img {
    max-height: 22px;
  }
  .an-nav-logo a:nth-child(3) img {
    max-height: 28px;
  }
}




.an-nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max-w), 100% - 2.5rem);
  margin-inline: auto;
  gap: 1rem;
}

.an-nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.an-nav-logo a img {
  height: 40px;
  width: auto;
  display: block;
  transition: filter 0.3s;
}

.an-nav-logo-responsive {
  display: none;
  text-decoration: none;
}

.an-nav-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
}

.an-nav.an-scrolled .an-nav-links{
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.an-nav-links > li {
  position: relative;
  display: flex;
  align-items: center;
}

.an-nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rose-dark);
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.an-nav-links a:hover {
  color: var(--rose);
  background: rgba(255, 255, 255, 0.2);
}



.an-nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1001;
}

.an-nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rose-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 auto;
}

.an-nav.an-scrolled .an-nav-hamburger span {
  background: var(--white);
}

.an-nav-hamburger.an-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.an-nav-hamburger.an-open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.an-nav-hamburger.an-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.an-sub-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  list-style: none;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  border: 1px solid var(--grey-1);
}

.an-sub-menu.contact{
min-width: 278px;
}

.an-has-children:hover .an-sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.an-sub-menu a {
  color: var(--text-mid);
  padding: 0.6rem 0.8rem;
  font-weight: 400;
  border-radius: var(--radius-sm);
  display: block;
}

.an-sub-menu.contact p .link-click{
  color: var(--text-mid);

}

.an-sub-menu a:hover {
  background: var(--rose-pale);
}

.an-sub-menu.contact a{
padding: 0 5px;
color: var(--rose-dark);
}
.an-sub-menu.contact a:hover{
background: var(--white);
}

.an-sub-menu.contact div{
font-size: 12px;
    font-weight: 600;
    border-bottom: 1px #eee dashed;
    padding: 12px 10px;
}

.an-sub-menu.contact p {
  font-size: 0.85rem;
  padding:10px 0px 15px 10px;
  line-height: 1.5;
}

.an-sub-menu.contact p:nth-child(4){
border-top: 1px solid #eee;
  padding: 18px 0px 10px 10px;
}

.an-sub-menu.contact p:nth-child(2),
.an-sub-menu.contact p:nth-child(3) {
  display: inline-flex;
  align-items: center;
  white-space: nowrap; 
}

.an-sub-menu.contact p > i {
  font-size: 0.75rem;
  color: var(--rose);
  margin-right: 5px;
  display: inline-block;
}

.an-sub-menu.contact p span {
  color: #b5b5be;
}

.an-sub-menu.contact p .social-link {
  display: inline-block;
  padding: 0px 6px;
}

.an-sub-menu.contact p .social-link:hover {
  background: transparent;
  opacity: 0.8;
}

.an-sub-menu.contact p .social-link i {
  font-size: 1.1rem;

  color: var(--rose); 
}

.an-sub-menu.contact p .phone-link {
  color: inherit;     
  text-decoration: none;
  cursor: default;    
}

@media (max-width: 1024px) {
  .an-sub-menu.contact p .phone-link {
    cursor: pointer;   
  }

  .an-sub-menu.contact p:nth-child(2),
  .an-sub-menu.contact p:nth-child(3) {
    display: flex; 
  }

  .an-sub-menu.contact p:nth-child(4),
  .an-sub-menu.contact p:nth-child(5) {
    display: inline-flex; 
    align-items: center;
    margin: 10px 15px 10px 10px;
    padding: 0;
    white-space: nowrap; 
  }
}

.an-footer {
  background: var(--burgundy-peach);
  color: var(--white);
  padding: 0 20px 0 20px;
  font-size: 15px;
}

.an-footer .container {
  max-width: var(--max-w);
  margin: auto;
  padding: 0;
}


.an-footer-contact h4 {
  font-family: var(--font-display);
  color: var(--gold-pale);
  font-size: 17px;
  margin-bottom: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
}


.an-footer-contact p {
  margin-bottom: 14px;
  color: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.an-footer-contact p i {
  margin-top: 4px;
  color: var(--white);
  width: 16px;
}

.an-footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.an-footer-contact a:hover {
  color: var(--white);
  text-decoration: underline;
}

.an-notice {
  padding: 20px 24px;
margin-bottom:60px;
  border-left: 4px solid var(--gold);
  background: #fffdf6;
  border-radius: var(--radius-sm);
  color: var(--grey-4);
  font-size: 0.95rem;
  border-top: 1px solid var(--gold-pale);
  border-right: 1px solid var(--gold-pale);
  border-bottom: 1px solid var(--gold-pale);
  opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.an-notice i {
  color: var(--gold); 
  margin-right: 6px;
}

.an-notice p{
 padding-bottom: 10px;
}

.an-notice.an-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 767px) {
  .an-footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
    
    padding-bottom: calc(20px + env(safe-area-inset-bottom)); 
  }

  .an-footer-bottom p {
    font-size: 0.75rem; 
    letter-spacing: 0.3px;
    
    word-break: break-word; 
  }
}



.an-footer-bottom {
  padding: 20px 0;
  text-align: center; 
  color: var(--white);
  font-size: 13.5px;
}


.social-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.social-row:last-child {
  margin-bottom: 0;
}

.social-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  width: 130px;
  font-weight: 500;
}

.social-row a {
  color: #fff;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-row a:hover {
  color: var(--gold-pale); 
}

.an-scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--rose-deep);
  color: var(--white) !important;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(110, 58, 67, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, visibility 0.25s;
}

.an-scroll-top-btn.an-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.an-scroll-top-btn:hover {
  background: var(--burgundy) !important;
  transform: translateY(-3px);
}

@media (min-width: 1025px) {
.an-has-children:hover .an-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
  }

  .an-nav.an-scrolled a.an-active {
    color: #fff5d4;
  }
  .an-nav.an-scrolled .an-sub-menu a {
    color: var(--rose-deep);
  }
  .an-nav.an-scrolled .an-sub-menu a:hover {
    color: var(--rose-deep);
  }
  .an-nav.an-scrolled .an-nav-links li.an-active > a,
  .an-nav.an-scrolled .an-nav-links a.an-active,
  .an-nav.an-scrolled a,
  .an-nav.an-scrolled a:hover {
    color: var(--white);
  }
.an-nav.an-scrolled a:hover{
 border-radius: 50px;
}
.an-nav.an-scrolled .an-nav-logo .an-og40th{
 display: none !important;
}
}

@media(max-width: 1024px) {
.an-sub-menu.contact p:nth-child(4){
border-top: unset;
}



.an-nav-links .an-sub-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: none;
  }

  .an-has-children.an-mobile-open .an-sub-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .an-nav-links a {
    -webkit-tap-highlight-color: transparent;
  }


  .an-nav-logo .an-og40th {
    display: none;
  }
  .an-nav-logo-responsive {
    display: none;
  }
  .an-nav-hamburger {
    display: flex;
  }
  .an-nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-h));
    background: linear-gradient(180deg, #fff0f3 0%, #fdf6f7 40%, var(--off-white) 100%);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 0;
  }
  .an-nav-links.an-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .an-nav-links > li {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .an-nav-links a {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1.05rem;
    color: var(--rose-dark) !important;
  }
  .an-nav-links .an-sub-menu a {
    color: var(--rose-deep) !important;
  }
  .an-sub-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 0.5rem;
    padding-left: 1rem;
    display: none;
  }
  .an-nav-links li.an-mobile-open .an-sub-menu {
    display: block;
  }
  .an-sub-menu a {
    color: rgba(255, 255, 255, 0.85);
  }

}


@media(max-width: 768px) {
  body {
    font-size: 16px;
  }
  .an-nav-logo-responsive {
    display: none;
  }

  .an-nav.an-scrolled .an-nav-logo-responsive {
    display: block !important;
    background: #866868;
  }
  .an-nav.an-scrolled .an-nav-logo-responsive a {
    text-decoration: unset;
  }
  .an-nav.an-scrolled .an-nav-logo .an-og40th {
    display: none !important;
  }
}