/* Import serif fonts */
@import url('https://fonts.googleapis.com/css2?family=Forum&family=Cormorant+Garamond:wght@400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');


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

/* Centered content container + responsive horizontal padding
   - max-width: 1040px centered
   - Desktop (>=1200px): 120px side padding
   - Laptop (>=992px): 96px
   - Tablet (>=768px): 48px
   - Mobile (<768px): 24px
*/
:root {
  --site-max-width: 1040px;
}

.top-nav,
.container,
.blog-container,
.main-footer {
  max-width: var(--site-max-width);
  width: 100%;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

@media (min-width: 768px) {
  .top-nav,
  .container,
  .blog-container,
  .main-footer {
    padding-left: 96px;
    padding-right: 96px;
  }
}

@media (min-width: 992px) {
  .top-nav,
  .container,
  .blog-container,
  .main-footer {
    padding-left: 240px;
    padding-right: 240px;
  }
}

@media (min-width: 1200px) {
  .top-nav,
  .container,
  .blog-container,
  .main-footer {
    padding-left: 320px;
    padding-right: 320px;
  }
}

/* Ensure images and headings align with the container */
.article-image img,
.container img,
.blog-container img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* Keep roomy horizontal padding on large desktops (updated) */
@media (min-width: 1200px) {
  .top-nav,
  .container,
  .blog-container,
  .main-footer {
    padding-inline: 320px;
  }
}

.intro-text p {
  margin: 0 0 1.5rem 0;
}

.intro-text p:last-child {
  margin-bottom: 0;
}


body {
  font-family: 'Lora', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  background: #FAFAFA;
  color: #111;
  min-height: 100vh;
}

/* HEADER NAVIGATION */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px clamp(24px, 6vw, 320px);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  color: #ff6600;
  letter-spacing: 0.5px;
}

/* Ensure logo anchor keeps intended styles when it's an <a> */
.nav-left .logo {
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  color: #ff6600;
  text-decoration: none;
}

.nav-left .logo:hover {
  opacity: 0.85;
  text-decoration: none;
}

.nav-separator {
  width: 1px;
  height: 20px;
  background-color: #ccc;
}

.nav-left a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  font-weight: 400;
  transition: opacity 0.2s;
}

.nav-left a:hover {
  opacity: 0.7;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-right a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: opacity 0.2s;
}

.nav-right a:hover {
  opacity: 0.7;
}

/* CONTACT MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17,17,17,0.45);
  z-index: 1200;
}

.modal {
  background: #fff;
  max-width: 760px;
  width: min(760px, calc(100% - 32px));
  border-radius: 14px;
  padding: 40px 40px 36px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  font-family: 'Lora', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  color: #111;
  border: 1px solid rgba(0,0,0,0.06);
}

.modal-header {
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #111; /* neutral black to keep minimal aesthetic */
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  position: absolute;
  right: 12px;
  top: 6px;
}

.modal-body {
  font-size: 16px;
  line-height: 1.8;
  color: #111;
  text-align: center;
  padding: 8px 6px 0;
}
.modal-body p { margin: 0 0 16px 0; }
.modal-body .email-line { display:block; margin-top:12px; font-weight:400; font-style:italic; color:#222; font-size:15px; }

.modal-body a.mail-link {
  color: #222;
  text-decoration: none;
  font-weight:400;
  font-style:italic;
}

.modal-footer {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.modal-action {
  background: #111;
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}
.modal-action {
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
.modal-action:hover { transform: translateY(-2px); }
.modal-action:active { transform: translateY(0) scale(0.98); box-shadow: none; }
.modal-action:hover { background: #000; }

@media (max-width: 500px) {
  .modal { padding: 18px; border-radius: 10px; }
  .modal-title { font-size: 16px; }
}

/* Toast inside modal */
.modal-toast {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  background: #111;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  opacity: 1;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

/* toast entrance animation */
@keyframes toast-in {
  from { transform: translateX(-50%) translateY(10px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.modal-toast { animation: toast-in 220ms ease-out; }

/* MAIN CONTENT */
.container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-block: 100px 80px;
  padding-inline: clamp(16px, 6vw, 180px);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

h1 {
  font-family: 'Forum', serif;
  font-size: 96px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.name-line1 {
  display: block;
}

.name-line2 {
  display: block;
}

.subtitle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 0;
}

.subtitle {
  font-size: 18px;
  color: #111;
  font-weight: 400;
  margin: 0;
}

/* LOCATION FOOTER */
.location-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #111;
}

.location-footer i {
  color: #958a8a; /* Red color for map pin */
  font-size: 14px;
}

/* Make location label visually match the subtitle */
.location-footer span {
  font-size: 18px;
}

.subtitle strong,
.location-footer span strong {
  font-weight: 600;
}

/* INTRO TEXT */
.intro-text {
  margin-top: 48px;
  margin-bottom: 64px;
}

.intro-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #111;
  font-weight: 400;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.intro-text p strong {
  font-weight: 600;
}

/* SECTIONS */
.work-section,
.posts-section,
.more-posts-section {
  margin-bottom: 64px;
  width: 100%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.view-all {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.view-all:hover {
  color: #111;
}

.section-line {
  height: 0.1px;
  background-color: #666;
  width: 100%;
  margin-bottom: 32px;
}

/* POSTS LIST */
.posts-list {
  display: flex;
  flex-direction: column;
}

.post-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  align-items: baseline;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
  cursor: pointer;
}

.post-item:hover {
  opacity: 0.7;
}

.post-date {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  min-width: 80px;
}

.post-title {
  font-size: 16px;
  color: #111;
  font-weight: 400;
}

.post-divider {
  height: 1px;
  background-color: #ddd;
  width: 100%;
}

/* FOOTER */
.main-footer {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-block-end: 64px;
  padding-inline: clamp(16px, 6vw, 180px);
  background: #FAFAFA;
}

.footer-line {
  height: 1px;
  background-color: #ddd;
  width: 100%;
  margin-bottom: 32px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 14px;
  color: #666;
  font-weight: 400;
}

.footer-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-nav a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #111;
}

/* BLOG POST PAGE */
.blog-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-block: 100px 80px;
  padding-inline: clamp(16px, 6vw, 180px);
  text-align: left;
}

.breadcrumb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb-link {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-link:hover {
  color: #111;
}

.breadcrumb-separator {
  color: #ccc;
}

.breadcrumb-current {
  color: #ff6600;
  font-weight: 500;
}

.post-date-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.post-date-header i {
  font-size: 14px;
}

.article-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #111;
}

.article-intro {
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  font-weight: 400;
  margin-bottom: 48px;
}

.article-image {
  width: 100%;
  margin-bottom: 48px;
}

.article-content {
  margin-bottom: 64px;
}

.article-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  font-weight: 400;
  margin-bottom: 24px;
}

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

.more-posts-section {
  margin-top: 0;
  margin-bottom: 64px;
}

.more-posts-section .section-title {
  margin-bottom: 8px;
}

.more-posts-section .section-line {
  margin-bottom: 32px;
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE - BLOG POST */
@media (max-width: 768px) {
  .blog-container {
    padding: 80px 120px 80px;
  }
  
  .article-title {
    font-size: 48px;
  }
  
  .article-intro {
    font-size: 16px;
  }
  
  .article-content p {
    font-size: 16px;
  }
  
  .post-date-header {
    justify-content: flex-start;
  }
}

@media (max-width: 500px) {
  .blog-container {
    padding: 60px 64px 80px;
  }
  
  .article-title {
    font-size: 36px;
  }
  
  .article-intro {
    font-size: 15px;
  }
  
  .article-content p {
    font-size: 15px;
  }
  
  .breadcrumb-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .post-date-header {
    align-self: flex-end;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  h1 {
    font-size: 52px;
  }
  
  .subtitle {
    font-size: 16px;
  }
  
  .location-footer {
    font-size: 13px;
  }
  
  .top-nav {
    padding: 20px 120px;
  }
  
  .container {
    padding: 80px 120px 80px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .intro-text p {
    font-size: 16px;
  }
  
  .main-footer {
    padding: 0 120px 48px;
  }
  
  .footer-nav {
    gap: 20px;
  }
  
}

@media (max-width: 500px) {
  h1 {
    font-size: 40px;
  }
  
  .subtitle {
    font-size: 14px;
  }
  
  .location-footer {
    font-size: 12px;
  }
  
  .subtitle-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .location-footer {
    align-self: center;
  }
  
  .top-nav {
    padding: 20px 64px;
  }
  
  .container {
    padding: 60px 32px 65px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .intro-text p {
    font-size: 15px;
  }
  
  .post-item {
    flex-direction: column;
    gap: 4px;
  }
  
  .post-date {
    min-width: auto;
  }
  
  .main-footer {
    padding: 0 64px 48px;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .footer-nav {
    gap: 16px;
  }
  
  
  .nav-left {
    gap: 12px;
  }
  
  .nav-left a {
    font-size: 13px;
  }
  
  .nav-right {
    gap: 12px;
  }
  
  .nav-right a {
    font-size: 14px;
  }
}

/* LUXURY CENTERED HEADER (GUCCI STYLE) */
.luxury-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px clamp(24px, 6vw, 180px);
  max-width: 1200px;
  margin: 0 auto;
}

.luxury-nav .nav-left {
  justify-self: start;
}

.luxury-nav .nav-center {
  justify-self: center;
}

.luxury-nav .nav-right {
  justify-self: end;
}

/* Center logo typography */
.luxury-nav .logo {
  font-family: 'Libre Bodoni', serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
}


/* Left text */
.luxury-nav .nav-left a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #111;
  text-decoration: none;
}

/* Right icons minimal */
.luxury-nav .nav-right a {
  font-size: 16px;
  color: #111;
  margin-left: 16px;
}

/* Premium header divider */
.header-divider {
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background-color: #000;
  opacity: 0.06;
  padding-inline: clamp(24px, 6vw, 180px);
}

.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FAFAFA;
}


.top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FAFAFA;
}


/* Luxury Gucci-style footer */
.luxury-footer {
  background: #000;
  padding: 290px clamp(24px, 6vw, 180px) 80px;
  max-width: 100%;
  margin: 0;
}

/* Footer content layout at top */
.luxury-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-stat;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-bottom: 100px;
}

.luxury-footer .footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 300;
}

.luxury-footer .footer-nav {
  display: flex;
  gap: 32px;
}

.luxury-footer .footer-nav a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.luxury-footer .footer-nav a:hover {
  color: #fff;
}

/* Large brand mark at bottom centered */
.footer-brand {
  font-family: 'Libre Bodoni', serif;
  font-size: clamp(80px, 18vw, 220px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-weight: 100;
  margin-top: 60px;
  overflow: hidden; /* Prevents overflow */
  max-width: 100%; /* Constrains width */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .luxury-footer {
    padding: 60px clamp(24px, 6vw, 120px) 48px;
  }
  
  .luxury-footer .footer-content {
    margin-bottom: 80px;
  }
  
  .footer-brand {
    letter-spacing: 0.3em;
    margin-top: 40px;
  }
}

@media (max-width: 500px) {
  .luxury-footer {
    padding: 48px clamp(24px, 6vw, 64px) 36px;
  }
  
  .luxury-footer .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
  }
  
  .luxury-footer .footer-nav {
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .footer-brand {
  font-size: clamp(50px, 12vw, 120px); /* add this line */
  letter-spacing: 0.35em;
}
}

@media (max-width: 500px) {
  .name-line1 {
    text-align: center;
  }
  
}

@media (max-width: 500px) {
  
  .name-line2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
}