/* ============================================
   Passcanet Corporate Theme - Main Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow: hidden;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  color: #ffffff;
  background: #0a0a0a;
  overflow: hidden;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
}

/* --- Typography --- */
.font-en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  letter-spacing: 0.15em;
}

.font-jp {
  font-family: "Noto Sans JP", sans-serif;
}

/* --- Loading Screen --- */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: #ffffff;
  opacity: 0;
  animation: loadFadeIn 1.5s ease forwards;
}

@keyframes loadFadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  50% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 30px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  padding: 15px 50px;
}

.site-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: #ffffff;
}

.site-logo span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  margin-top: 2px;
  opacity: 0.7;
}

/* Desktop Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.4s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  opacity: 1;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: #ffffff;
  transition: all 0.4s ease;
}

.hamburger span:nth-child(1) {
  margin-bottom: 7px;
}

.hamburger span:nth-child(2) {
  margin-bottom: 7px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.6s; }

/* --- Fullscreen Sections Container --- */
.sections-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* --- Individual Section --- */
.fp-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: none;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.fp-section::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.fp-section {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.fp-section.active {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}

/* Section Background */
.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* When section is scrollable, keep background fixed via JS transform */
.fp-section.has-scroll .section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.section-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* Stronger overlay for light background images */
#business-minpaku .section-bg::after {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 100%);
}

#business-flower .section-bg::after {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 100%);
}

/* Section Content */
.section-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  padding: 0 60px;
}

/* When section is scrollable, adjust content layout */
.fp-section.has-scroll {
  align-items: flex-start;
  justify-content: flex-start;
}

.fp-section.has-scroll .section-content {
  padding-top: 120px;
  padding-bottom: 80px;
}

/* --- Section Transition Animations --- */

/* Fade + Scale */
.fp-section.transition-fade-in {
  animation: sectionFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fp-section.transition-fade-out {
  animation: sectionFadeOut 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes sectionFadeIn {
  0% {
    opacity: 0;
    visibility: visible;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
}

@keyframes sectionFadeOut {
  0% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
  }
}

/* Slide Up */
.fp-section.transition-slide-up-in {
  animation: slideUpIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fp-section.transition-slide-up-out {
  animation: slideUpOut 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideUpIn {
  0% {
    opacity: 0;
    visibility: visible;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes slideUpOut {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30%);
  }
}

/* Slide Down (reverse) */
.fp-section.transition-slide-down-in {
  animation: slideDownIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fp-section.transition-slide-down-out {
  animation: slideDownOut 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideDownIn {
  0% {
    opacity: 0;
    visibility: visible;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes slideDownOut {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30%);
  }
}

/* Clip Reveal */
.fp-section.transition-clip-in {
  animation: clipRevealIn 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.fp-section.transition-clip-out {
  animation: clipRevealOut 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes clipRevealIn {
  0% {
    opacity: 1;
    visibility: visible;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes clipRevealOut {
  0% {
    opacity: 1;
    visibility: visible;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    clip-path: inset(0 0 0 100%);
  }
}

/* Content animations within sections */
.section-content .animate-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fp-section.active .section-content .animate-item {
  opacity: 1;
  transform: translateY(0);
}

.fp-section.active .section-content .animate-item:nth-child(1) { transition-delay: 0.3s; }
.fp-section.active .section-content .animate-item:nth-child(2) { transition-delay: 0.5s; }
.fp-section.active .section-content .animate-item:nth-child(3) { transition-delay: 0.7s; }
.fp-section.active .section-content .animate-item:nth-child(4) { transition-delay: 0.9s; }
.fp-section.active .section-content .animate-item:nth-child(5) { transition-delay: 1.1s; }

/* --- Section Navigation (Side Dots) --- */
.section-nav {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-nav-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
  background: transparent;
  position: relative;
}

.section-nav-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.section-nav-dot.active {
  border-color: #ffffff;
}

.section-nav-dot.active::before {
  width: 6px;
  height: 6px;
}

.section-nav-dot:hover {
  border-color: #ffffff;
  transform: scale(1.3);
}

/* Section Number */
.section-number {
  position: absolute;
  bottom: 40px;
  left: 60px;
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  font-weight: 300;
  opacity: 0.1;
  line-height: 1;
  z-index: 10;
  pointer-events: none;
}

/* --- Hero Section --- */
.hero-section .section-content {
  text-align: left;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  opacity: 0.8;
  margin-bottom: 40px;
}

.hero-description {
  font-size: 0.9rem;
  line-height: 2;
  max-width: 500px;
  opacity: 0.7;
  font-weight: 300;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.scroll-indicator span {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-indicator::after {
  content: "";
  width: 1px;
  height: 60px;
  background: #ffffff;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- About Section --- */
.about-section .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 15px;
  opacity: 0.6;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}

.section-title-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  font-weight: 300;
  margin-bottom: 50px;
  opacity: 0.7;
}

.about-text {
  font-size: 0.9rem;
  line-height: 2.2;
  max-width: 700px;
  font-weight: 300;
  opacity: 0.85;
}

.company-info-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 15px 30px;
  margin-top: 50px;
  text-align: left;
  font-size: 0.85rem;
}

.company-info-grid dt {
  font-weight: 500;
  opacity: 0.6;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding-top: 2px;
}

.company-info-grid dd {
  font-weight: 300;
  line-height: 1.8;
}

/* --- Business Sections --- */
.business-section .section-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.business-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.5;
}

.business-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.business-name-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  font-weight: 300;
  margin-bottom: 35px;
  opacity: 0.6;
}

.business-description {
  font-size: 0.9rem;
  line-height: 2;
  max-width: 550px;
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: 40px;
}

.business-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 8px;
  transition: border-color 0.4s ease;
}

.business-link:hover {
  border-color: #ffffff;
  opacity: 1;
}

.business-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s ease;
}

.business-link:hover svg {
  transform: translateX(5px);
}

/* --- Contact Section --- */
.contact-section .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-section .section-bg::after {
  background: rgba(0, 0, 0, 0.6);
}

.contact-intro {
  font-size: 0.9rem;
  line-height: 2;
  font-weight: 300;
  opacity: 0.7;
  margin-bottom: 40px;
}

/* Forminator Form Styles */
.forminator-custom-form {
  width: 100%;
  max-width: 600px;
}

.forminator-custom-form .forminator-row {
  margin-bottom: 20px;
}

.forminator-custom-form .forminator-field {
  margin-bottom: 0;
}

.forminator-custom-form .forminator-label {
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em !important;
  font-weight: 300 !important;
  margin-bottom: 8px !important;
}

.forminator-custom-form .forminator-input,
.forminator-custom-form .forminator-textarea,
.forminator-custom-form .forminator-select {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0 !important;
  color: #ffffff !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 0.9rem !important;
  padding: 14px 18px !important;
  transition: border-color 0.3s ease, background 0.3s ease !important;
}

.forminator-custom-form .forminator-input:focus,
.forminator-custom-form .forminator-textarea:focus,
.forminator-custom-form .forminator-select:focus {
  border-color: rgba(255, 255, 255, 0.6) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  outline: none !important;
}

.forminator-custom-form .forminator-input::placeholder,
.forminator-custom-form .forminator-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

.forminator-custom-form .forminator-textarea {
  min-height: 150px !important;
  resize: vertical !important;
}

.forminator-custom-form .forminator-button-submit {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  color: #ffffff !important;
  font-family: "Cormorant Garamond", serif !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  padding: 16px 60px !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: all 0.4s ease !important;
  margin-top: 20px !important;
}

.forminator-custom-form .forminator-button-submit:hover {
  background: #ffffff !important;
  color: #0a0a0a !important;
}

/* Fallback contact form (when Forminator not active) */
.contact-form {
  width: 100%;
  max-width: 600px;
}

.form-group {
  margin-bottom: 25px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 8px;
  font-weight: 300;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  padding: 14px 18px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 60px;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #ffffff;
  color: #0a0a0a;
}

/* --- Footer Section --- */
.footer-section {
  height: auto !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer-section .section-content {
  display: none;
}

.footer-section .section-bg::after {
  background: rgba(0, 0, 0, 0.75);
}

.footer-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  padding-bottom: 40px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 60px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}

.footer-logo span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  margin-top: 5px;
  opacity: 0.5;
}

.footer-address {
  font-size: 0.75rem;
  line-height: 1.8;
  opacity: 0.5;
  font-weight: 300;
}

.footer-email {
  font-size: 0.75rem;
  opacity: 0.5;
  font-weight: 300;
  margin-top: 5px;
}

.footer-email a:hover {
  opacity: 1;
}

.footer-copyright {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  opacity: 0.3;
  text-align: right;
}

/* --- Back to Top Button --- */
.back-to-top-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.4s ease, transform 0.4s ease;
  cursor: pointer;
  text-decoration: none;
}

.back-to-top:hover {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  transform: translateY(-4px);
}

.back-to-top-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: border-color 0.4s ease, background-color 0.4s ease;
}

.back-to-top:hover .back-to-top-icon {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.05);
}

.back-to-top-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  font-weight: 400;
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.3));
  z-index: 9999;
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .business-name {
    font-size: 2.8rem;
  }

  .section-number {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 20px 25px;
  }

  .site-header.scrolled {
    padding: 12px 25px;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section-content {
    padding: 0 30px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .business-name {
    font-size: 2.2rem;
  }

  .section-number {
    font-size: 3rem;
    left: 30px;
    bottom: 30px;
  }

  .section-nav {
    right: 15px;
  }

  .scroll-indicator {
    right: 30px;
    bottom: 30px;
  }

  .company-info-grid {
    grid-template-columns: 100px 1fr;
    gap: 10px 20px;
    font-size: 0.8rem;
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 60px;
  }

  .footer-copyright {
    text-align: left;
  }

  .footer-content {
    padding: 0 30px;
    padding-bottom: 30px;
  }

  .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .business-name {
    font-size: 1.8rem;
  }

  .about-text {
    font-size: 0.8rem;
    line-height: 2;
  }

  .business-description {
    font-size: 0.8rem;
  }

  .section-number {
    display: none;
  }
}
