* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fdf9f4;
  color: #2a241e;
  line-height: 1.55;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.site-header {
  background: #fefaf5;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e8ddd2;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo-area a {
  text-decoration: none;
}

.logo-area h1,
.logo-area .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  background: linear-gradient(125deg, #8b5a2b, #c27e4a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 4px;
  line-height: 1.2;
}

.logo-area .logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8b735f;
  margin-top: 4px;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #3e3328;
  padding: 6px 0;
}

.main-nav a:hover {
  color: #c77a4a;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  width: 28px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #3e3328;
  border-radius: 2px;
  left: 0;
  transition: all 0.2s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.menu-toggle.active .hamburger span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e8ddd2;
    border-bottom: 1px solid #e8ddd2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    display: none;
    padding: 20px 28px;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 16px;
  }

  .main-nav a {
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
  }
  
  .header-inner {
    position: relative;
  }
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  margin: 60px 0;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card {
  display: flex;
  gap: 20px;
  background: white;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid #efe2d6;
}

.feature-icon img {
  width: 50px;
  height: 50px;
}

.profile-row {
  background: white;
  border-radius: 32px;
  padding: 28px;
  margin-top: 16px;
  border: 1px solid #efe2d6;
}

.profile-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.profile-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  border-radius: 24px;
}

.profile-content {
  flex: 1;
}

.profile-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}

.profile-links a,
.tantric-link a {
  color: #c77a4a;
  text-decoration: none;
  font-weight: 600;
}

.tantric-link {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #efe2d6;
}

.sidebar-right {
  background: #fff9f2;
  border-radius: 32px;
  padding: 28px;
  position: sticky;
  top: 100px;
}

.sidebar-widget h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #3c6e4a;
  border-left: 3px solid #c77a4a;
  padding-left: 16px;
  margin-bottom: 24px;
}

.sidebar-nav-list {
  list-style: none;
}

.sidebar-nav-list li {
  margin-bottom: 14px;
}

.sidebar-nav-list a {
  text-decoration: none;
  color: #4f4033;
  font-weight: 500;
  display: block;
  padding: 6px 0;
}

.sidebar-nav-list a:hover {
  color: #c77a4a;
}

.articles-placeholder {
  background: #fcf3e9;
  border-radius: 28px;
  padding: 24px;
  text-align: center;
  color: #7f634b;
  border: 1px solid #eadbcb;
}

.btn-ghost {
  display: inline-block;
  border: 1px solid #c77a4a;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  color: #c77a4a;
  background: transparent;
  cursor: pointer;
}

.btn-ghost:hover {
  background: #c77a4a;
  color: white;
}

.contact-line {
  background: #ffffffcc;
  border-radius: 24px;
  padding: 20px;
  font-size: 0.85rem;
}

.site-footer {
  background: #1e2b1e;
  color: #e5d9cf;
  margin-top: 80px;
  padding: 48px 0 32px;
  border-radius: 32px 32px 0 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #f3e2d2;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cfc1b2;
  text-decoration: none;
}

.footer-links a:hover {
  color: #eab88c;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #3a5240;
  font-size: 0.7rem;
}

.float-img {
  float: left;
  margin-right: 25px;
  margin-bottom: 15px;
  border-radius: 20px;
}

@media (max-width: 880px) {
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .sidebar-right {
    position: static;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .profile-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .float-img {
    float: none;
    display: block;
    margin: 0 auto 20px;
  }
}